home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / programming / source / thesource6.dms / thesource6.adf / Source / Misc / ReactDiff.lha / ReactionDiffusion / makefile < prev    next >
Encoding:
Makefile  |  1993-01-29  |  311 b   |  17 lines

  1. # spots by reaction-diffusion
  2.  
  3. CFLAGS = -O -I. -I/usr/include
  4. LIBS = /usr/local/lib/X11R4/libX11.a -lm
  5.  
  6. OBJ1 = linear.o graphics.o
  7. OBJ2 = spots.o graphics.o
  8.  
  9. current: spots linear
  10.  
  11. linear: $(OBJ1) makefile
  12.     cc -o linear $(OBJ1) $(LIBS) $(CFLAGS)
  13.  
  14. spots: $(OBJ2) makefile
  15.     cc -o spots $(OBJ2) $(LIBS) $(CFLAGS)
  16.  
  17.